home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsjava.h < prev    next >
C/C++ Source or Header  |  2004-05-09  |  2KB  |  73 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Java classes parser .h                                 */
  34. /* Author: Yann Philippot                                       */
  35. /* ------------------------------------------------------------ */
  36.  
  37.  
  38. #ifndef HTSJAVA_DEFH
  39. #define HTSJAVA_DEFH 
  40.  
  41. #include <stdio.h>
  42. #include "htsmodules.h"
  43.  
  44. typedef struct  {
  45.   unsigned long  int magic;
  46.   unsigned short int minor;
  47.   unsigned short int major;
  48.   unsigned short int count;
  49. } JAVA_HEADER;
  50.  
  51. typedef struct {
  52.   int file_position;
  53.   //
  54.   unsigned int index1;
  55.   unsigned int type;
  56.   char name[1024];
  57. } RESP_STRUCT;
  58.  
  59.  
  60. /* Library internal definictions */
  61. #ifdef HTS_INTERNAL_BYTECODE
  62. int hts_detect_java(htsmoduleStruct* str);
  63. int hts_parse_java(htsmoduleStruct* str);
  64. RESP_STRUCT affecte(int i1,int i2,RESP_STRUCT *i3,RESP_STRUCT *i4,int i5);
  65. //unsigned int swap(long int nomber,int digit);
  66. RESP_STRUCT readtable(htsmoduleStruct* str,FILE *fp,RESP_STRUCT,int*);
  67. unsigned short int readshort(FILE *fp);
  68. int tris(char*);
  69. char * printname(char [1024]);
  70. #endif
  71.  
  72. #endif
  73.